home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / PAThumbWheel / PAThumbWheelCellDrawing.h < prev    next >
Text File  |  1995-06-12  |  727b  |  23 lines

  1. #import "PAThumbWheelCell.h"
  2.  
  3. /******************************************************************************
  4.     PAThumbWheelCellDrawing
  5.     
  6. This file handles all of the drawing for the PAThumbWheelCell. Don't try to make sense of any of this.
  7.  
  8. Copyright 1992, Jeff Martin. (jmartin@next.com 415-780-3833)
  9. ******************************************************************************/
  10.  
  11. @interface PAThumbWheelCell(Drawing)
  12.  
  13. - drawSelf:(const NXRect *)frame inView:view;
  14. - getDashesForFrame:(const NXRect *)frame :(float **)pnts :(int *)pntCount :(char **)ops :(int *)opCount;
  15. - generateImage:(const NXRect *)frame;
  16.  
  17. @end
  18.  
  19. NXColor PAScaleRGBColor(NXColor color, float scale);
  20.  
  21. float IntSin(int x);
  22. #define IntCos(x) IntSin((x)+90)
  23.